1. /* slmsmall.cpp by K.Tsuru */
  2. // function ID = 207 DRADIX, BRADIX
  3. /**********************
  4. SLong class
  5. set a small value v
  6. ***********************/
  7. #ifndef SN_H
  8. #include "sn.h"
  9. #endif
  10. void SLong::SetSmall(signed char v){ //within one figure
  11. if(RawSign()) SetZero();
  12. SetSign(v);
  13. figure[0] = (fType)abs(v);
  14. }

slmsmall.cpp : last modifiled at 2017/03/13 14:32:01(327 bytes)
created at 2017/10/07 10:26:49
The creation time of this html file is 2017/11/09 14:52:03 (Thu Nov 09 14:52:03 2017).